go/types.declInfo.vtyp (field)

6 uses

	go/types (current package)
		decl.go#L190: 		check.constDecl(obj, d.vtyp, d.init, d.inherited)
		decl.go#L193: 		check.varDecl(obj, d.lhs, d.vtyp, d.init)
		resolver.go#L23: 	vtyp      ast.Expr      // type, or nil (for const and var declarations only)
		resolver.go#L348: 					d := &declInfo{file: fileScope, vtyp: d.typ, init: init, inherited: d.inherited}
		resolver.go#L363: 					d1 = &declInfo{file: fileScope, lhs: lhs, vtyp: d.spec.Type, init: d.spec.Values[0]}
		resolver.go#L378: 						di = &declInfo{file: fileScope, vtyp: d.spec.Type, init: init}